home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
CUGUK
/
COMMS
/
C101.ZIP
/
UUPC11XS.ZIP
/
MAIL
/
SYSALIAS.H
< prev
Wrap
C/C++ Source or Header
|
1992-12-03
|
2KB
|
42 lines
/*--------------------------------------------------------------------*/
/* S y s A l i a s . H */
/* */
/* System wide alias support for UUPC/extended */
/*--------------------------------------------------------------------*/
/*--------------------------------------------------------------------*/
/* Changes Copyright (c) 1990-1992 by Kendra Electronic */
/* Wonderworks. */
/* */
/* All rights reserved except those explicitly granted by the */
/* UUPC/extended license agreement. */
/*--------------------------------------------------------------------*/
/*--------------------------------------------------------------------*/
/* RCS Information */
/*--------------------------------------------------------------------*/
/*
* $Id: SYSALIAS.H 1.1 1992/12/04 01:03:49 ahd Exp $
*
* $Log: SYSALIAS.H $
* Revision 1.1 1992/12/04 01:03:49 ahd
* Initial revision
*
*/
/*--------------------------------------------------------------------*/
/* System alias table; includes name of alias, and start and */
/* end position of alias data in the system alias file */
/*--------------------------------------------------------------------*/
typedef struct _ALIASTABLE {
char *alias;
long start;
long end;
} ALIASTABLE;
extern char *SysAliases; /* Name of system alias file */
ALIASTABLE *checkalias( const char *user );